home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getppid.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  112 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.07.29.17.40.34;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.07.29.17.20.06;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.10.15.50.34;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Lint.
  32. @
  33. text
  34. @/* 
  35.  * getppid.c --
  36.  *
  37.  *    Source code for the getppid library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: getppid.c,v 1.1 88/07/29 17:20:06 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include <sprite.h>
  54. #include <proc.h>
  55. #include "compatInt.h"
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * getppid --
  61.  *
  62.  *    Procedure to map from Unix getppid system call to Sprite Proc_GetIDs.
  63.  *
  64.  * Results:
  65.  *    UNIX_ERROR is returned upon error, with the actual error code
  66.  *    stored in errno.  Upon success, the ID of the parent of the current
  67.  *    process is returned.
  68.  *
  69.  * Side effects:
  70.  *    None.
  71.  *
  72.  *----------------------------------------------------------------------
  73.  */
  74.  
  75. int
  76. getppid()
  77. {
  78.     ReturnStatus status;    /* result returned by Proc_GetIDs */
  79.     int parentPid;        /* ID of parent of current process */
  80.  
  81.     status = Proc_GetIDs((int *) NULL, &parentPid, (int *) NULL, (int *) NULL);
  82.     if (status != SUCCESS) {
  83.     errno = Compat_MapCode(status);
  84.     return(UNIX_ERROR);
  85.     } else {
  86.     return(parentPid);
  87.     }
  88. }
  89. @
  90.  
  91.  
  92. 1.2.1.1
  93. log
  94. @Initial branch for Sprite server.
  95. @
  96. text
  97. @d17 1
  98. a17 1
  99. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/getppid.c,v 1.2 88/07/29 17:40:34 ouster Exp $ SPRITE (Berkeley)";
  100. @
  101.  
  102.  
  103. 1.1
  104. log
  105. @Initial revision
  106. @
  107. text
  108. @d17 1
  109. a17 1
  110. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  111. @
  112.